home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright Cornell University 1986. All rights are reserved.
- 3270vars.h -- assorted variable declarations for 3270
- */
- #ifndef _3270VAR
-
- #define _3270VAR
-
- #include <stdio.h>
- #include <types.h>
- #include <timer.h>
-
- /* structure definitions */
-
- extern unsigned long getmya5(); /* returns old a5, sets our a5 global data * */
-
- extern unsigned char ebctoasc[]; /* pointer to array containing EBCDIC chars */
- extern unsigned char asctoebc[]; /* pointer to array containing ASCII chars */
-
-
- /* various macintosh emulator vars and flags */
-
- extern short mousecurson; /* is the mouse cursor hidden? */
- extern short modaldialog; /* is a modaldialog active outside the Mac task? skip event loop! */
- extern long creator; /* creator for file info */
-
- extern short mfbackground; /* we're in the background under MultiFinder */
-
- extern short iplog; /* enable logging of IP packets UNUSED */
- extern unsigned long cticks; /* current # of ticks elapsed */
- extern unsigned long tickcursor; /* next tick count to service cursor */
- extern unsigned long tickstats; /* next tick count to display packet counters */
-
- extern char * copyerr;
- extern short mfpresent; /* we're under MultiFinder */
-
- extern unsigned char realattr; /* mask for relevant attributes */
-
- extern long gettextscrap();
- extern long memtest(); /* forward declaration */
- #endif
-